projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
626665b
)
(decode_eol): Fix bug of converting CRLF to LF.
author
Kenichi Handa
<handa@m17n.org>
Wed, 5 Mar 1997 07:02:02 +0000
(07:02 +0000)
committer
Kenichi Handa
<handa@m17n.org>
Wed, 5 Mar 1997 07:02:02 +0000
(07:02 +0000)
src/coding.c
patch
|
blob
|
history
diff --git
a/src/coding.c
b/src/coding.c
index 929e7e666bbc6a28416eb46840d191055fb97cfc..277a9b1667804f7dc8e9ce484415fba976454656 100644
(file)
--- a/
src/coding.c
+++ b/
src/coding.c
@@
-1872,7
+1872,7
@@
decode_eol (coding, source, destination, src_bytes, dst_bytes, consumed)
ONE_MORE_BYTE (c);
if (c != '\n')
*dst++ = '\r';
-
+ *dst++ = c;
}
else
*dst++ = c;